home *** CD-ROM | disk | FTP | other *** search
/ Champak 119 / (Vol 119) Nov 09 2010.iso / Games / soccer_skill.swf / scripts / frame_2 / DoAction.as
Text File  |  2010-11-09  |  339b  |  14 lines

  1. loadedbytes = getBytesLoaded();
  2. totalbytes = getBytesTotal();
  3. loadedkbytes = Math.ceil(loadedbytes / 1000) + " Kb";
  4. totalkbytes = Math.ceil(totalbytes / 1000) + " Kb";
  5. if(loadedbytes == totalbytes)
  6. {
  7.    gotoAndStop(5);
  8. }
  9. frame = int(loadedbytes / (totalbytes / 100));
  10. tellTarget(_root.loader)
  11. {
  12.    gotoAndStop(_root.frame);
  13. }
  14.